home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-10-28 | 510 b | 30 lines | [TEXT/MPS ] |
- {********************************************
- ; File: GSBug.p
- ;
- ;
- ; Copyright Apple Computer, Inc. 1990-91
- ; All Rights Reserved
- ;
- ********************************************}
-
- UNIT GSBUG;
-
- INTERFACE
-
- USES TYPES;
-
- CONST
- { DebugGetInfo selectors }
- dgiProgramCounter = 0;
-
- FUNCTION DebugVersion: integer;
- FUNCTION DebugStatus: BOOLEAN;
- PROCEDURE DebugStr(s:Str255);
- PROCEDURE SetMileStone(s:Str255);
- PROCEDURE DebugSetHook(p:VoidProcPtr);
- FUNCTION DebugGetInfo(selector:integer): longint;
-
- IMPLEMENTATION
-
- END.
-